home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global counter1
- repeat with n = 4 to 14
- set the visible of sprite n to 0
- end repeat
- repeat with n = 25 to 35
- set the visible of sprite n to 1
- end repeat
- put counter1 into field "counter1"
- if counter1 <= 9 then
- set the memberNum of sprite 37 to counter1 + 49
- else
- if counter1 <= 99 then
- set the memberNum of sprite 38 to char 1 of field "counter1" + 49
- set the memberNum of sprite 37 to char 2 of field "counter1" + 49
- else
- if counter1 <= 999 then
- set the memberNum of sprite 39 to char 1 of field "counter1" + 49
- set the memberNum of sprite 38 to char 2 of field "counter1" + 49
- set the memberNum of sprite 37 to char 3 of field "counter1" + 49
- else
- if counter1 > 999 then
- set the memberNum of sprite 39 to 49
- set the memberNum of sprite 38 to 49
- set the memberNum of sprite 37 to 49
- end if
- end if
- end if
- end if
- repeat with x = 60 to 78
- handcursor(x)
- end repeat
- end
-
- on exitFrame
- go(the frame)
- end
-